.particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 107, 53, 0.3);
            border-radius: 50%;
            animation: float 15s infinite;
        }

        .particle:nth-child(2n) {
            background: rgba(20, 184, 166, 0.3);
            animation-duration: 20s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(100px);
                opacity: 0;
            }
        }

        .showcase-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .intro-section {
            text-align: center;
            margin-bottom: 40px;
            animation: fadeInDown 1s ease-out;
        }

        .intro-section h1 {
            font-size: 3rem;
            color: #ff6b35;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
            font-family: 'Roboto Slab', serif;
        }

        .intro-section p {
            font-size: clamp(0.95rem, 1.8vw, 1.05rem);
            color: #475569;
            max-width: 550px;
            margin: 0 auto;
            line-height: 1.5;
            padding: 0 10px;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 50px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .solution-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 16px;
            padding: 32px 28px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(203, 213, 225, 0.3);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease-out;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(20, 184, 166, 0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }

        .solution-card:hover::before {
            opacity: 1;
        }

        .solution-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(255, 107, 53, 0.2);
        }

        .solution-card:nth-child(2):hover {
            box-shadow: 0 16px 48px rgba(20, 184, 166, 0.2);
        }

        .card-content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .icon-wrapper {
            width: 64px;
            height: 64px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.8rem;
            transition: transform 0.3s ease;
            align-self: flex-start;
        }
        
        .icon-wrapper i {
            color: #fff;
        }

        .solution-card:nth-child(1) .icon-wrapper {
            background: linear-gradient(135deg, #FF6B35, #FF8C42);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        .solution-card:nth-child(2) .icon-wrapper {
            background: linear-gradient(135deg, #14B8A6, #0d9488);
            box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
        }

        .solution-card:hover .icon-wrapper {
            transform: scale(1.1) rotateY(360deg);
        }

        .solution-card h2 {
            font-size: clamp(1.5rem, 3vw, 1.9rem);
            margin-bottom: 14px;
            color: #1e293b;
            line-height: 1.3;
        }

        .solution-card p {
            font-size: clamp(0.95rem, 1.5vw, 1.05rem);
            color: #475569;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .features-list {
            list-style: none;
            margin-bottom: 28px;
            flex-grow: 1;
        }

        .features-list li {
            padding: 10px 0;
            padding-left: 26px;
            position: relative;
            color: #334155;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            line-height: 1.5;
        }

        .features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .solution-card:nth-child(1) .features-list li::before {
            color: #FF6B35;
        }

        .solution-card:nth-child(2) .features-list li::before {
            color: #14B8A6;
        }

        .cta-button {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid;
            text-align: center;
            margin-top: auto;
        }

        .solution-card:nth-child(1) .cta-button {
            background: linear-gradient(135deg, #FF6B35, #FF8C42);
            color: #fff;
            border-color: #FF6B35;
        }

        .solution-card:nth-child(2) .cta-button {
            background: linear-gradient(135deg, #14B8A6, #0d9488);
            color: #fff;
            border-color: #14B8A6;
        }

        .cta-button:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .cta-button::after {
            content: '→';
            margin-left: 8px;
            transition: margin-left 0.3s ease;
        }

        .cta-button:hover::after {
            margin-left: 12px;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .solution-card:nth-child(2) {
            animation-delay: 0.15s;
        }

        /* Tablet styles */
        @media (max-width: 1024px) {
            .showcase-container {
                padding: 32px 20px;
            }
            
            .solutions-grid {
                gap: 26px;
            }
        }
        
        /* Mobile landscape and tablets */
        @media (max-width: 768px) {
            .showcase-container {
                padding: 28px 16px;
            }
            
            .solutions-grid {
                grid-template-columns: 1fr;
                gap: 24px;
                margin-top: 32px;
                max-width: 100%;
            }
        }
        
        /* Small tablets and large phones */
        @media (max-width: 640px) {
            .solutions-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .solution-card {
                padding: 24px 20px;
            }
        }

            .intro-section {
                margin-bottom: 40px;
            }

            .solution-card {
                padding: 28px 24px;
            }
            
            .icon-wrapper {
                width: 56px;
                height: 56px;
                font-size: 1.6rem;
            }
        }
        
        /* Mobile portrait - All smartphones */
        @media (max-width: 480px) {
            .showcase-container {
                padding: 20px 15px;
                margin-top: 80px !important;
            }

            .intro-section {
                margin-bottom: 30px;
            }
            
            .intro-section h1 {
                margin-bottom: 15px;
            }
            
            .intro-section p {
                font-size: 1rem;
                padding: 0 5px;
            }

            .solutions-grid {
                gap: 20px;
                margin-top: 25px;
            }

            .solution-card {
                padding: 20px 18px;
                border-radius: 12px;
            }
            
            .solution-card h2 {
                font-size: 1.4rem;
                margin-bottom: 12px;
            }
            
            .solution-card p {
                font-size: 0.95rem;
                margin-bottom: 20px;
            }
            
            .features-list {
                margin-bottom: 24px;
            }
            
            .features-list li {
                padding: 6px 0;
                font-size: 0.9rem;
            }
            
            .icon-wrapper {
                width: 48px;
                height: 48px;
                font-size: 1.4rem;
                margin-bottom: 15px;
            }
            
            .cta-button {
                padding: 12px 20px;
                width: 100%;
                font-size: 0.95rem;
            }
        }
        
        /* Extra small phones (iPhone SE, etc.) */
        @media (max-width: 375px) {
            .showcase-container {
                padding: 15px 12px;
            }
            

            
            .solution-card {
                padding: 18px 15px;
            }
            
            .icon-wrapper {
                width: 44px;
                height: 44px;
                font-size: 1.3rem;
            }
        }